home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / clang / ctutor2.zip / GOODFORM.C < prev    next >
Text File  |  1987-07-04  |  310b  |  10 lines

  1. main()  /* Main program starts here */
  2. {
  3.    printf("Good form ");
  4.    printf          ("can aid in ");
  5.    printf                     ("understanding a program.\n");
  6.    printf("And bad form ");
  7.    printf             ("can make a program ");
  8.    printf                                ("unreadable.\n");
  9. }
  10.